Skip to content

fix(deps): update all non-major dependencies#93

Merged
sapphi-red merged 1 commit intomainfrom
renovate/all-minor-patch
Mar 14, 2026
Merged

fix(deps): update all non-major dependencies#93
sapphi-red merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 2, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) ^24.10.15^24.12.0 age confidence
conventional-changelog (source) ^7.1.1^7.2.0 age confidence
conventional-changelog-conventionalcommits (source) ^9.1.0^9.3.0 age confidence
esbuild ^0.27.3^0.27.4 age confidence
pnpm (source) 10.30.310.32.1 age confidence
publint (source) ^0.3.17^0.3.18 age confidence
tinyexec ^1.0.2^1.0.4 age confidence
vitest (source) ^4.0.18^4.1.0 age confidence

Release Notes

conventional-changelog/conventional-changelog (conventional-changelog)

v7.2.0

Compare Source

Features
Bug Fixes
  • regex for git+https urls now supports multiple GitLab subgroups (#​1429) (4a7b763)
conventional-changelog/conventional-changelog (conventional-changelog-conventionalcommits)

v9.3.0

Compare Source

Features

v9.2.0

Compare Source

Features
evanw/esbuild (esbuild)

v0.27.4

Compare Source

  • Fix a regression with CSS media queries (#​4395, #​4405, #​4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    
    /* Old output (incorrect) */
    @&#8203;media only screen and (min-width: 10px) or (min-height: 10px) {
      a {
        color: red;
      }
    }
    
    /* New output (correct) */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a {
        color: red;
      }
    }
  • Fix an edge case with the inject feature (#​4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#​4329, #​4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

    However, hitting this case is potentially a sign that something else is wrong. Ideally you wouldn't be building something so enormous that the build metadata can't even fit inside a JavaScript string. You may want to consider optimizing your project, or breaking up your project into multiple parts that are built independently. Another option could potentially be to use esbuild's command-line API instead of its JavaScript API, which is more efficient (although of course then you can't use JavaScript plugins, so it may not be an option).

pnpm/pnpm (pnpm)

v10.32.1: pnpm 10.32.1

Compare Source

Patch Changes

  • Fix a regression where pnpm-workspace.yaml without a packages field caused all directories to be treated as workspace projects. This broke projects that use pnpm-workspace.yaml only for settings (e.g. minimumReleaseAge) without defining workspace packages #​10909.

Platinum Sponsors

Bit

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx

v10.32.0: pnpm 10.32

Compare Source

Minor Changes

  • Added --all flag to pnpm approve-builds that approves all pending builds without interactive prompts #​10136.

Patch Changes

  • Reverted change related to setting explicitly the npm config file path, which caused regressions.
  • Reverted fix related to lockfile-include-tarball-url. Fixes #​10915.

Platinum Sponsors

Bit

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx

v10.31.0

Compare Source

publint/publint (publint)

v0.3.18

Compare Source

Patch Changes
  • Fix deprecated subpath mapping check crash and make getPkgPathValue from publint/utils return undefined if the path is invalid (ad2aa9c)
tinylibs/tinyexec (tinyexec)

v1.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: tinylibs/tinyexec@1.0.3...1.0.4

v1.0.3

Compare Source

What's Changed

  • chore: enable dependabot, bump actions by @​43081j in #​60
  • chore: upgrade dependencies by @​43081j in #​62
  • chore(deps): bump actions/checkout from 5.0.0 to 5.0.1 in the github-actions group by @​dependabot[bot] in #​66
  • chore: add licenses to distributed code temporarily by @​43081j in #​69
  • chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 in the github-actions group by @​dependabot[bot] in #​70
  • chore(deps): bump the github-actions group with 2 updates by @​dependabot[bot] in #​72
  • chore: bump node in CI by @​43081j in #​75
  • chore(deps-dev): bump the development-dependencies group across 1 directory with 8 updates by @​dependabot[bot] in #​74
  • chore(deps-dev): bump the development-dependencies group with 3 updates by @​dependabot[bot] in #​77
  • chore(deps): bump actions/setup-node from 6.1.0 to 6.2.0 in the github-actions group by @​dependabot[bot] in #​76
  • chore(deps): bump actions/checkout from 6.0.1 to 6.0.2 in the github-actions group by @​dependabot[bot] in #​79
  • chore(deps-dev): bump the development-dependencies group with 6 updates by @​dependabot[bot] in #​80
  • chore(deps-dev): bump @​types/node from 25.0.10 to 25.2.0 in the development-dependencies group by @​dependabot[bot] in #​81
  • chore(deps-dev): bump the development-dependencies group across 1 directory with 6 updates by @​dependabot[bot] in #​83
  • chore(deps-dev): bump the development-dependencies group with 3 updates by @​dependabot[bot] in #​84
  • chore(deps-dev): bump @​types/node from 25.3.0 to 25.3.3 in the development-dependencies group by @​dependabot[bot] in #​85
  • fix: prefer local node_modules/.bin executables to globally installed ones by @​iiroj in #​87
  • chore(deps): bump actions/setup-node from 6.2.0 to 6.3.0 in the github-actions group by @​dependabot[bot] in #​88
  • chore(deps-dev): bump the development-dependencies group with 4 updates by @​dependabot[bot] in #​89

New Contributors

Full Changelog: tinylibs/tinyexec@1.0.2...1.0.3

vitest-dev/vitest (vitest)

v4.1.0

Compare Source

Vitest 4.1 is out!

This release page lists all changes made to the project during the 4.1 beta. To get a review of all the new features, read our blog post.

   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 2, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ba1808f to 8b109c1 Compare March 11, 2026 02:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8b109c1 to 56eec37 Compare March 12, 2026 17:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 56eec37 to c569cf1 Compare March 13, 2026 20:57
@sapphi-red sapphi-red merged commit 230edb7 into main Mar 14, 2026
4 checks passed
@sapphi-red sapphi-red deleted the renovate/all-minor-patch branch March 14, 2026 06:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant